Move definition of xc, to avoid confusing pylint.
authoremellor@ewan <emellor@ewan>
Tue, 20 Sep 2005 16:25:00 +0000 (17:25 +0100)
committeremellor@ewan <emellor@ewan>
Tue, 20 Sep 2005 16:25:00 +0000 (17:25 +0100)
Signed-off-by: Ewan Mellor <ewan@xensource.com>
tools/python/xen/xend/XendCheckpoint.py

index 0c4f5aa05950f1d3bfd7d1eee1d0c45c231684b2..51d0904245a64084a685817f9b30b3e225033198 100644 (file)
@@ -4,7 +4,6 @@
 # Public License.  See the file "COPYING" in the main directory of
 # this archive for more details.
 
-import errno
 import os
 import re
 import select
@@ -12,7 +11,7 @@ import sxp
 from string import join
 from struct import pack, unpack, calcsize
 from xen.util.xpopen import xPopen3
-import xen.lowlevel.xc; xc = xen.lowlevel.xc.new()
+import xen.lowlevel.xc
 from xen.xend.xenstore.xsutil import IntroduceDomain
 
 from XendError import XendError
@@ -25,6 +24,10 @@ PATH_XC_RESTORE = "/usr/libexec/xen/xc_restore"
 sizeof_int = calcsize("i")
 sizeof_unsigned_long = calcsize("L")
 
+
+xc = xen.lowlevel.xc.new()
+
+
 def write_exact(fd, buf, errmsg):
     if os.write(fd, buf) != len(buf):
         raise XendError(errmsg)